home *** CD-ROM | disk | FTP | other *** search
/ Haight-Ashbury in the Sixties / Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso / mac / MAIN / ATTRACT.DIR / 00009_Script_9 < prev    next >
Text File  |  1995-04-29  |  622b  |  36 lines

  1. On StartMovie
  2.   
  3.   cursor [527, 528]
  4.   set the puppet of sprite 2 = true
  5.   set the puppet of sprite 3 = true
  6.   
  7. end StartMovie
  8.  
  9. On EnterFrame
  10.   
  11.   if the mousecast = the number of cast "help" then 
  12.     set the castnum of sprite 2 = 6
  13.   else
  14.     set the castnum of sprite 2 = 5
  15.   end if
  16.   
  17.   if the mousecast = the number of cast "quit" then 
  18.     set the castnum of sprite 3 = 8
  19.   else
  20.     set the castnum of sprite 3 = 7
  21.   end if
  22.   
  23.   if rollover(4) = true then
  24.     set the visibility of sprite 4 = true
  25.   else
  26.     set the visibility of sprite 4 = false
  27.   end if
  28.   
  29. end enterframe
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.